The project shows how FIDE rating of current top-5 chess players has been changing for several last years.

The data is loaded from official FIDE ratings page. The graphics is made using plotly library.

library(plotly)
plot_ly(top_players_ratings, x = ~date, y = ~rating, color = ~name, type = "scatter", mode = "lines")